dataviz\figure\utilities/orientation.rs
/// Represents the orientation of a chart, graph, or component.
pub enum Orientation {
/// Vertical orientation, typically used for charts where data is arranged along a vertical axis.
Vertical,
/// Horizontal orientation, typically used for charts where data is arranged along a horizontal axis.
Horizontal,
}